home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
AmigaSystem
/
AmiStart
/
ToolsSDK.lha
/
source
/
amistart_modulebase.h
next >
Wrap
C/C++ Source or Header
|
2002-06-01
|
837b
|
37 lines
/*
** $VER: amistart_modulebase.h 39.0 (15.03.01)
**
** definition of AmiStartModuleBase
**
** by Darius Brewka based on CLib37x by
** (C) Copyright 1996-98 Andreas R. Kleinert
** All Rights Reserved.
*/
#ifndef AMISTART_MODULEBASE_H
#define AMISTART_MODULEBASE_H
#ifdef __MAXON__
#ifndef EXEC_LIBRARIES_H
#include <exec/libraries.h>
#endif
#else
#ifndef EXEC_LIBRARIES
#include <exec/libraries.h>
#endif /* EXEC_LIBRARIES_H */
#endif
struct AmiStartModuleBase
{
struct Library exb_LibNode;
SEGLISTPTR exb_SegList;
struct ExecBase *exb_SysBase;
struct IntuitionBase *exb_IntuitionBase;
struct GfxBase *exb_GfxBase;
struct DosBase *exb_DosBase;
// struct Library *exb_MUIMasterBase;
struct Library *exb_UtilityBase;
};
#endif /* AMISTART_MODULEBASE_H */